home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 February: Tool Chest / Dev.CD Feb 95 / Dev.CD Feb 95.toast / New System Software Extensions / ASLM SDK v1.1.2 / ASLM Examples / TestTools / Sources / TestAllocLinkedList.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-21  |  701 b   |  31 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        TestAllocLinkedList.h
  3.  
  4.     Contains:    Declaration for TTestAllocLinkedList class
  5.  
  6.     Copyright:    © 1991-1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __TESTALLOCLINKEDLIST__
  11. #define __TESTALLOCLINKEDLIST__
  12.  
  13. #ifndef __TESTLINKEDLIST__
  14. #include "TestLinkedList.h"
  15. #endif
  16.  
  17. #define kTTestAllocLinkedListID    kTestToolPrefix "TTestAllocLinkedList,1.1"
  18.  
  19. class TTestAllocLinkedList : public TTestLinkedList
  20. {
  21.     public:
  22.                         TTestAllocLinkedList();
  23.         virtual            ~TTestAllocLinkedList();
  24.  
  25.         virtual void    InitTest(Boolean verbose, Boolean debug, int, char**);
  26.         virtual void    RunTestIteration(Boolean verbose, Boolean debug);
  27.         virtual void    EndTest(Boolean verbose, Boolean debug);
  28. };
  29.  
  30. #endif
  31.